home *** CD-ROM | disk | FTP | other *** search
/ CD ROM Paradise Collection 4 / CD ROM Paradise Collection 4 1995 Nov.iso / program / swaga_c.zip / COMM.SWG / 0064_Turning Modem On-Off.pas < prev    next >
Pascal/Delphi Source File  |  1995-03-03  |  411b  |  20 lines

  1. {
  2. >I am looking for some code to turn on/off the modem and use
  3. >it to make telephone calls.  If you have the code, pleas post
  4. >it if you could.  Many thanks.
  5.  
  6. I really don't know about making a call, but here are two procs to turn
  7. on/off an internal modem:
  8. }
  9. procedure modem_on; assembler;
  10. asm
  11.   mov ax,4401h
  12.   int 15h
  13. end;
  14.  
  15. procedure modem_off; assembler;
  16. asm
  17.   mov ax,4400h
  18.   int 15h
  19. end;
  20.